Skip to main content
Version: 1.0.2

Get a Card

Fetching all relevant details of the card specified in the request.

Method: POST

{{URL}}/cardv2

Headers

NameValue
Content-Typeapplication/json

Example

Payload Parameters
ParametersDescription

reference

Optional

String

Unique reference ID of the request

Sample Value: "visadps100010"

transactionType

Mandatory

String

Type of operation / transaction

Constant Value: "GET_CARD"

customerId

Mandatory

String

Unique ID of customer who holds the card

Sample Value: "100000000006001"

accountNumber

Mandatory

String

Account number linked to the card

Sample Value: "400320588344662"

product

Mandatory

String

Name of the product associated with the card

Sample Value: "DEFAULT"

channel

Mandatory

Enum

Processing channel through which the card transaction happens

Valid Values:

PULSE

VISA_DPS

Sample Value: "VISA_DPS"

program

Mandatory

String

Name of the program to which the card product is mapped

Sample Value: "DEFAULT"

cardId

Mandatory

String

Unique ID of the card

Sample Value: "6f586be7bf1c44b8b4ea11b2e2510e25"


curl --location --globoff --request GET '{{URL}}/cardv2' \
--header 'Content-Type: application/json' \
--data '{"method":"ledger.CARD.request","id":"1","params":{"payload":{"reference":"visadps100010","transactionType":"GET_CARD","customerId":"100000000006001","accountNumber":"400320588344662","product":"DEFAULT","channel":"VISA_DPS","program":"DEFAULT","cardId":"6f586be7bf1c44b8b4ea11b2e2510e25"},"api":{"credential":"{{cred}}","signature":"{{signature}}","apiKey":"{{Api-key}}"}}}'

Body


{
"method": "ledger.CARD.request",
"id": "1",
"params": {
"payload": {
"reference": "visadps100010",
"transactionType": "GET_CARD",
"customerId": "100000000006001",
"accountNumber": "400320588344662",
"product": "DEFAULT",
"channel": "VISA_DPS",
"program": "DEFAULT",
"cardId": "6f586be7bf1c44b8b4ea11b2e2510e25"
},
"api": {
"credential": "{{cred}}",
"signature": "{{signature}}",
"apiKey": "{{Api-key}}"
}
}
}

Response: 200

Response Parameters
ParametersDescription

Id

String

Response ID echoed from the request ID

Sample Value: "1"

result

Object

cardHolder

Object

cardHolderId

String

Unique id of the card holder

Sample value: "CH00000000020003"

firstName

String

First name of the account holder

Sample value: "Matthew"

lastName

String

Last name of the account holder

Sample value: "Sandra"

phoneNumber

String

Phone number of the account holder

Sample value: "2562322420"

addressLine1

String

First line of account holder's address

Sample value: "3456W"

addressLine2

String

Second line of account holder's address

Sample value: "1st street"

city

String

City where account holder resides

Sample value: "Kansus"

state

String

State where account holder resides

Sample value: "KS"

zipCode

String

Zipcode of account holder's address

Sample value: "56213"

country

String

Country where account holder resides

Sample value: " US"

emailId

String

Email address of the account holder

Sample value: "mathewsandra+1@gmail.com"

createdDate

String

Date and time when card holder was created

Sample value: " 2024-11-20T06:51:22.476Z"

updatedDate

String

Date and time when card holder details was updated

Sample value: " 2024-11-20T06:51:22.476Z"

card

Object

cardId

String

Unique ID of the card

Sample Value: "6f586be7bf1c44b8b4ea11b2e2510e25"

cardProduct

String

ID of the card product associated to the card

Sample Value: "2c6b841a-dfc1-4a6a-a12a-13c21035b5be"

postedDate

String

Date and time when the card details were posted

Sample Value: "2024-11-20T06:54:26.822Z"

updatedDate

String

Date and time when the card details were updated

Sample Value: "2024-11-20T06:59:13.805Z"

cardMaskNumber

String

Masked representation of the card number

Sample Value: "************5461"

cardStatus

String

Current status of card

Sample Value: "ACTIVE"

cardExpiryDate

String

Expiration date of the card in YYYYMM format

Sample Value: "202611"

allowAtm

Boolean

Allowing card for transactions through ATM

Sample Value: false

allowEcommerce

Boolean

Allowing card for e-commerce transactions

Sample Value: false

allowMoto

Boolean

Allowing card for transactions through mobile

Sample Value: false

allowPos

Boolean

Allowing card for point-of-sale (POS) terminal transaction

Sample Value: false

allowTips

Boolean

Allowing card for tips transaction

Sample Value: false

allowPurchase

Boolean

Allowing card for purchase transaction

Sample Value: false

allowRefund

Boolean

Allowing card for refund transaction

Sample Value: false

allowCashback

Boolean

Allowing card for cashback transaction

Sample Value: false

allowWithdraw

Boolean

Allowing card for ATM withdrawal transaction

Sample Value: false

allowAuthAndCompletion

Boolean

Allowing for authorization and completion of transaction that happens through card

Sample Value: false

smart

Boolean

Allowing card for smart transaction

Sample Value: false

checkAvsZip

Boolean

Allowing card to perform AVS checks on the legalRep ZIP code during transaction

Sample Value: false

checkAvsAddr

Boolean

Allowing card to perform AVS checks on the legalRep address during transaction

Sample Value: false

cvv

String

Card Verification Value of the card

Sample Value: ""

transactionMade

Boolean

Inicates whether any transactions have been made using the card or not

Sample Value: false

orderStatus

String

Current order status of the card

Sample Value: "ORDER_PLACED"

isReIssue

Boolean

Inicates whether the card is reissued

Sample Value: false

isReplace

Boolean

Inicates whether the card replaced

Sample Value: false

orderSubStatus

String

Substatus that provides further details about the card order process that provides card order status provided from VISA

Sample Value: "ORDER_PENDING"

api

Object

type

String

Acknowledgement for type of operation requested for

Sample Value: "GET_CARD_ACK"

reference

String

Unique reference for the API response

Sample Value: "REFvisadps100010"

dateCreated

Number

Unix timestamp of the response was created

Sample Value: 1732086223

originalReference

String

Original reference ID taken from the request

Sample Value: "visadps100010"


{
"id": "1",
"result": {
"cardHolder": {
"cardHolderId": "CH00000000020003",
"firstName": "Matthew",
"lastName": "Sandra",
"phoneNumber": "2562322420",
"addressLine1": "3456W",
"addressLine2": "1st street",
"city": "Kansus",
"state": "KS",
"zipCode": "56213",
"country": "US",
"emailId": "mathewsandra+1@gmail.com",
"createdDate": "2024-11-20T06:51:22.476Z",
"updatedDate": "2024-11-20T06:51:22.476Z"
},
"card": {
"cardId": "6f586be7bf1c44b8b4ea11b2e2510e25",
"cardProduct": "2c6b841a-dfc1-4a6a-a12a-13c21035b5be",
"postedDate": "2024-11-20T06:54:26.822Z",
"updatedDate": "2024-11-20T06:59:13.805Z",
"cardMaskNumber": "************5461",
"cardStatus": "ACTIVE",
"cardExpiryDate": "202611",
"allowAtm": false,
"allowEcommerce": false,
"allowMoto": false,
"allowPos": false,
"allowTips": false,
"allowPurchase": false,
"allowRefund": false,
"allowCashback": false,
"allowWithdraw": false,
"allowAuthAndCompletion": false,
"smart": false,
"checkAvsZip": false,
"checkAvsAddr": false,
"cvv": "",
"transactionMade": false,
"orderStatus": "ORDER_PLACED",
"isReIssue": false,
"isReplace": false,
"orderSubStatus": "ORDER_PENDING"
},
"api": {
"type": "GET_CARD_ACK",
"reference": "REFvisadps100010",
"dateCreated": 1732086223,
"originalReference": "visadps100010"
}
}
}